11. Quiz: IoU and Overlap Limits
Intersection over Union (IoU)
We know the IoU is given by the area of: intersection/union. The next couple questions will test your intuition about what values IoU can take as it compares two bounding boxes.
SOLUTION:
1SOLUTION:
0IoU Values
The IoU between two bounding boxes will always have a value between 0 and 1 because, as two boxes drift apart, their intersection approaches 0, but if two bounding boxes overlap perfectly their IoU will be 1.
So, the higher the IOU the more overlap there is between the two bounding boxes!
In the next video we will see how Non-Maximal suppression uses the IOU to only choose the best bounding box.